@charset "utf-8";

/* ========================================
   정적 페이지 공통 스타일
   - head.php의 .page-content > .content 내부에서 사용
   - default.css와 중복되지 않는 콘텐츠 전용 스타일
   ======================================== */


/* 2. 제목 스타일 (head.php의 .page-title h2와 별도) */
.static-content h2 {
    font-weight: 500;   
    color: var(--color-primary);
}

.membership-guide h3 {
    margin: 40px 0 20px;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.static-content h3 {
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1.8125;      /* 29px / 16px */
    color: var(--color-primary);
    margin: 2.5rem 0 1rem;
}

.static-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary-mid);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* 3. 본문 텍스트 */
.static-content p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.static-content strong {
    font-weight: 600;
    color: var(--color-text);
}

.static-content em {
    font-style: italic;
    color: var(--color-text-secondary);
}

/* 5. 리스트 */
.static-content ul,
.static-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.static-content ul {
    list-style-type: disc;
}

.static-content ol {
    list-style-type: decimal;
}

.static-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--color-text);
}

.static-content li::marker {
    color: var(--color-primary);
}

/* 6. 인용 */
.static-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    color: var(--color-text-secondary);
    font-style: italic;
}

/* 8. 구분선 */
.static-content hr {
    display: block;
    margin: 2.5rem 0;
    border: none;
    border-top: 1px solid var(--color-border);
}

/* 9. 강조 박스 */
.static-content .notice-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: 4px;
}

.static-content .notice-box p {
    margin-bottom: 0.5rem;
}

.static-content .notice-box p:last-child {
    margin-bottom: 0;
}

/* 10. 섹션 구분 */
.static-content section {
    margin-bottom: 2rem;
}

.static-content section:last-of-type {
    margin-bottom: 0;
}

/* ========================================
   공통 유틸리티 클래스
   ======================================== */

/* 인사말 스타일 (큰 텍스트) */
.static-content .text-greeting {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* 우측 정렬 텍스트 */
.static-content .text-right {
    text-align: right;
}

/* 서명 영역 */
.static-content .signature {
    margin-top: 3rem;
    text-align: right;
    color: var(--color-text-secondary);
}

.static-content .signature p {
    margin-bottom: 0.5rem;
}

.static-content .signature .signature-name {
    font-weight: 600;
    color: var(--color-text);
}

/* ========================================
   인사말/창립사 레이아웃
   ======================================== */

/* 인사말 헤더 영역 */
.greeting-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.greeting-header__text {
    flex: 1;
}


.greeting-header__photo {
    flex-shrink: 0;
}

.greeting-header__photo img {
    width: 280px;
    height: auto;
    object-fit: cover;
}

/* 인사말 인트로 */
.greeting-intro {
    margin-bottom: 3rem;
}

.greeting-intro__opening {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.greeting-intro__message {
    font-size: 1rem;
    line-height: 1.8;
}

/* 인사말 본문 */
.greeting-body {
    margin-bottom: 3rem;
}

.greeting-closing {
    margin-top: 2rem;
    font-size: 1rem;
}

/* 서명 영역 */
.greeting-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
}

.greeting-signature__position {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.greeting-signature__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

/* ========================================
   연혁 타임라인
   ======================================== */

.history-timeline {
    position: relative;
    padding-left: 8rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 6.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.history-item {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.history-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.history-year {
    position: absolute;
    left: -8rem;
    top: 0;
    width: 5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: right;
}

.history-year::after {
    content: '';
    position: absolute;
    right: -1.75rem;
    top: 0.75rem;
    width: 1rem;
    height: 1rem;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-primary);
}

.history-content {
    padding-left: 2rem;
}

.history-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.history-event {
    margin-bottom: 2rem;
}

.history-event:last-child {
    margin-bottom: 0;
}

.history-date {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.history-highlight {
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    border-radius: 4px;
}

.history-highlight .history-date {
    color: var(--color-primary);
}

.history-highlight p {
    margin-bottom: 0;
}

/* ========================================
   미션&비전
   ======================================== */

.mission-vision {
    max-width: 900px;
    margin: 0 auto;
}

.mv-section {
    margin-bottom: 5rem;
}

.mv-section:last-child {
    margin-bottom: 0;
}

.mv-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--color-primary);
}

.mv-content {
    text-align: center;
    line-height: 2;
}

.mv-content p {
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    color: var(--color-text);
}

.mv-content p:last-child {
    margin-bottom: 0;
}

.mv-highlight {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.mv-highlight-large {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.375rem;
    display: inline-block;
    margin: 0.5rem 0;
}

.mv-closing {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-weight: 500;
}

/* ========================================
   반응형 - 태블릿
   ======================================== */
@media (max-width: 1024px) {
    .static-content {
        max-width: 100%;
    }
    
    .static-content h2 {
        font-size: 1.625rem;
    }
    
    .static-content h3 {
        font-size: 1.3rem;
    }
    
    .static-content h3::before {
        font-size: 1.3rem;
    }
    
    .static-content h4 {
        font-size: 1.1rem;
    }
    
    .static-content .text-greeting {
        font-size: 1.05rem;
    }
    
    /* 인사말 레이아웃 */
    .greeting-header {
        padding: 2rem;
        gap: 2rem;
    }
    
    .greeting-header__title {
        font-size: 1.5rem;
    }
    
    .greeting-header__photo img {
        width: 220px;
        height: 220px;
    }
    
    /* 연혁 타임라인 */
    .history-timeline {
        padding-left: 6rem;
    }
    
    .history-timeline::before {
        left: 5rem;
    }
    
    .history-year {
        left: -6rem;
        width: 4rem;
        font-size: 1.75rem;
    }
    
    .history-year::after {
        right: -1.25rem;
    }
    
    /* 미션&비전 */
    .mv-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .mv-content p {
        font-size: 1rem;
    }
    
    .mv-highlight {
        font-size: 1.0625rem;
    }
    
    .mv-highlight-large {
        font-size: 1.25rem;
    }
}

/* ========================================
   반응형 - 모바일
   ======================================== */
@media (max-width: 768px) {
    .static-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .static-content h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem;
    }
    
    .static-content h3::before {
        font-size: 1.2rem;
    }
    
    .static-content h4 {
        font-size: 1.05rem;
        margin-top: 1.5rem;
    }
    
    .static-content p {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
    }
    
    .static-content ul,
    .static-content ol {
        padding-left: 1.25rem;
    }
    
    .static-content blockquote {
        padding: 1rem 1.5rem;
    }
    
    .static-content th,
    .static-content td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .static-content .text-greeting {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .static-content .signature {
        margin-top: 2rem;
    }
    
    /* 인사말 레이아웃 */
    .greeting-header {
        flex-direction: column-reverse;
        padding: 2rem 1.5rem;
        gap: 2rem;
        text-align: center;
    }
    
    .greeting-header__title {
        font-size: 1.375rem;
    }
    
    .greeting-header__photo img {
        width: 180px;
        height: 180px;
    }
    
    .greeting-signature__name {
        font-size: 1.25rem;
    }
    
    /* 연혁 타임라인 */
    .history-timeline {
        padding-left: 0;
    }
    
    .history-timeline::before {
        left: 2rem;
    }
    
    .history-item {
        padding-left: 4rem;
    }
    
    .history-year {
        position: relative;
        left: 0;
        width: auto;
        text-align: left;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .history-year::after {
        left: -4rem;
        right: auto;
        top: 0.5rem;
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .history-content {
        padding-left: 0;
    }
    
    .history-highlight {
        padding: 1rem;
    }
    
    /* 미션&비전 */
    .mv-section {
        margin-bottom: 3.5rem;
    }
    
    .mv-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .mv-content {
        text-align: left;
        line-height: 1.9;
    }
    
    .mv-content p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .mv-highlight {
        font-size: 1rem;
    }
    
    .mv-highlight-large {
        font-size: 1.125rem;
    }
    
    .mv-closing {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* ========================================
   반응형 - 소형 모바일
   ======================================== */
@media (max-width: 360px) {
    .static-content h2 {
        font-size: 1.375rem;
    }
    
    .static-content h3 {
        font-size: 1.1rem;
        padding-left: 1rem;
        margin: 1.75rem 0 0.875rem;
    }
    
    .static-content h3::before {
        font-size: 1.1rem;
    }
    
    .static-content h4 {
        font-size: 1rem;
    }
    
    .static-content p {
        font-size: 0.875rem;
    }
    
    .static-content blockquote {
        padding: 0.875rem 1.25rem;
        margin: 1.5rem 0;
    }
    
    .static-content .text-greeting {
        font-size: 0.9375rem;
    }
    
    /* 인사말 레이아웃 */
    .greeting-header {
        padding: 1.5rem 1rem;
    }
    
    .greeting-header__title {
        font-size: 1.25rem;
    }
    
    .greeting-header__photo img {
        width: 150px;
        height: 150px;
    }
    
    .greeting-signature__name {
        font-size: 1.125rem;
    }
    
    /* 연혁 타임라인 */
    .history-timeline::before {
        left: 1.5rem;
    }
    
    .history-item {
        padding-left: 3rem;
    }
    
    .history-year {
        font-size: 1.375rem;
    }
    
    .history-year::after {
        left: -3rem;
        width: 0.75rem;
        height: 0.75rem;
    }
    
    /* 미션&비전 */
    .mv-title {
        font-size: 1.5rem;
    }
    
    .mv-content p {
        font-size: 0.875rem;
    }
    
    .mv-highlight {
        font-size: 0.9375rem;
    }
    
    .mv-highlight-large {
        font-size: 1.0625rem;
    }
}


